/******************************************************************
header
*******************************************************************/
header {
    position: fixed;
    z-index: 99;
  }
  
  /* 头部背景样式 */
  #header {
    position: relative;
    z-index: 999;
    background: rgba(24, 23, 23, 0.1);
    width: 100vw;
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }
  /* 头部logo */
  .logo {
    width: 200px;
    display: inline-block;
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translate(0, -50%);
  }
  /* 头部菜单 */
  .menu {
    display: inline-block;
    position: absolute;
    right: 10%;
  }
  .menuItem {
    display: inline-block;
    font-size: 18px;
    padding: 27px 40px;
  }
  .menuItem a {
    text-decoration: none;
    color: white;
  }
  /* 选中样式 */
  .menulink:hover {
    color: #005aff !important;
    padding-bottom: 28px;
    /* border-bottom: 3px solid #005AFF; */
    box-shadow: 0 -2px 0 #005aff inset;
  }
  
  .menu_line {
    display: inline-block;
    position: absolute;
    right: 10%;
    height: 81px;
    width: 1px;
    background: rgba(255, 255, 255, 0.35);
  }
  /* 下拉菜单栏详情 */
  .menu_detail_bg {
    position: absolute;
    padding-top: 81px;
    box-sizing: content-box;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    z-index: 999;
    width: 100vw;
    height: 300px;
    background: white;
    display: none;
  }
  .menu_detail {
    position: absolute;
    right: 10%;
  }
  .menu_detail_item {
    display: table-cell;
    font-size: 18px;
    height: 100%;
    padding: 0px 40px 145px;
    border-right: 1px solid #ccc;
  }
  .menu_detail_item a {
    text-decoration: none;
  }
  .menu_detial_link {
    text-decoration: none;
    display: block;
    margin-top: 25px;
    color: #000;
  }
  .menu_detial_link:hover {
    color: #005aff !important;
  }
  /* .menu_detial_link:hover::before {
    content: '-';
  } */
  /* .boder{
      display: inline-block;
      border-right: 1px solid #ccc;
      height: 100%;
      width: 1px;
    } */
  /* <!-- 菜单栏缩略icon --> */
  .menu_zoom {
    display: inline-block;
    color: white;
    top: 50%;
    cursor: pointer;
    transform: translate(0, -50%);
    position: absolute;
    right: 5%;
  }
  .real_logo {
    display: none;
  }
  